home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Sample Code / Movie Toolbox / Inside Mac Movie Toolbox Code / mtb13.c < prev    next >
Encoding:
Text File  |  1994-12-05  |  466 b   |  26 lines  |  [TEXT/MPS ]

  1. /*
  2.   File:            mtb13.c
  3.   Contains:        Update Functions
  4.   Written by:    DTS and QT Engineering
  5.   Copyright:    © 1992-1994 by Apple Computer, Inc., all rights reserved.
  6.   Change History (most recent first):
  7.   <1>         12/4/94    khs        changed the format of the file to the new look and feel
  8.   To Do:
  9. */
  10.  
  11.  
  12. // INCLUDES
  13. #include "mtb.h"
  14.  
  15.  
  16. // FUNCTIONS
  17. void DoUpdate(WindowPtr theWindow,
  18.               Movie theMovie)
  19. {
  20.     BeginUpdate(theWindow);
  21.     UpdateMovie(theMovie);
  22.     EndUpdate(theWindow);
  23. }
  24.  
  25.  
  26.